-
Notifications
You must be signed in to change notification settings - Fork 1
feat: box environment #155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: l-monninger/environments-api
Are you sure you want to change the base?
feat: box environment #155
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Getting this permission denied
error in the snapshot test:
Error: failed to copy dir for MovementMigrator
Caused by:
Permission denied (os error 13)
test migrator::movement_migrator::tests::test_snapshot ... FAILED
It looks like the failure has to do with the user which CI is using when spawning the containers vs. when running the rest of the program. I wonder if |
…nt-core workspace nix shell outside of current nix shell.
Ok(response) => { | ||
if response.status().is_success() { | ||
ready = true; | ||
continue; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This appears aggressive. Maybe we could add a delay here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, could be good.
chore: rename slect to select
Summary
Provides initial implementation of
box
Environment. Additionally, provides the option to snapshot fromlive movement
instance into an isolated instance ofmovement migrator
in a manner which partially addresses #136.Note
There are some more complicated API features that make this slightly more friendly in real live environments. But, I am likely going to wait until there's more general exposure to the problems those address before trying to add the to the
box
environment. Likely this will depend a bit upon #148.